home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Tools & Apps / Graphics & Imaging / Printer Drivers / STD File Saver 1.1 / MyPrintDriver.a < prev    next >
Encoding:
Text File  |  1990-06-03  |  597 b   |  38 lines  |  [TEXT/MPS ]

  1. ; all functions just say that everything is fine and nothing else
  2. ; see also MyPrintDriver.p for an alternate version of the driver
  3. ;
  4. ; a printer driver related to a physical device would of course be more complete than that
  5.  
  6.  
  7. _Debugger    OPWORD    $A9FF
  8.  
  9. XPRINT    PROC    EXPORT
  10.     
  11.     DC.W    $0C00
  12.     DC.W    $0000
  13.     DC.W    $0000
  14.     DC.W    $0000
  15.     DC.W    DRVROPEN
  16.     DC.W    DRVRPRIME
  17.     DC.W    DRVRCONTROL
  18.     DC.W    DRVRSTATUS
  19.     DC.W    DRVRCLOSE
  20.     DC.B    '.Print'
  21.     DC.B    $20
  22.  
  23. DRVROPEN
  24.     MOVE.B    $0A,$0007(A1)
  25.  
  26. DRVRPRIME
  27. DRVRSTATUS
  28. DRVRCLOSE
  29.     MOVEQ    #$00,D0
  30.     RTS
  31. DRVRCONTROL
  32.     MOVEQ    #$00,D0
  33.     MOVE.L    $08FC,-(A7)    ; $08FC is JIODone
  34.     RTS
  35.  
  36.     ENDPROC
  37.     END
  38.